home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-config-sample.php < prev    next >
Encoding:
PHP Script  |  2004-05-21  |  993 b   |  33 lines

  1. <?php
  2. /** WordPress's config file **/
  3. /** http://wordpress.org/   **/
  4.  
  5. // ** MySQL settings ** //
  6. define('DB_NAME', 'wordpress');     // The name of the database
  7. define('DB_USER', 'username');     // Your MySQL username
  8. define('DB_PASSWORD', 'password'); // ...and password
  9. define('DB_HOST', 'localhost');     // 99% chance you won't need to change this value
  10.  
  11. // Change the prefix if you want to have multiple blogs in a single database.
  12.  
  13. $table_prefix  = 'wp_';   // example: 'wp_' or 'b2' or 'mylogin_'
  14.  
  15. // Change this to localize WordPress.  A corresponding MO file for the
  16. // chosen language must be installed to wp-includes/languages.
  17. // For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
  18. // to enable German language support.
  19. define ('WPLANG', '');
  20.  
  21. /* Stop editing */
  22.  
  23. $server = DB_HOST;
  24. $loginsql = DB_USER;
  25. $passsql = DB_PASSWORD;
  26. $base = DB_NAME;
  27.  
  28. define('ABSPATH', dirname(__FILE__).'/');
  29.  
  30. // Get everything else
  31. require_once(ABSPATH.'wp-settings.php');
  32. ?>
  33.